home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Starter / Source / RemoteServer.h < prev    next >
Text File  |  1995-06-12  |  565b  |  30 lines

  1.  
  2. /*     RemoteServer.m - written by Robert Vasvari 8/94
  3.  
  4.     This class is the server interface for Distributed
  5.     Objects Access to DocViewer. This object passes
  6.     the remote messages through to the Application's
  7.     delegate.
  8.     
  9. */
  10.  
  11. #import <appkit/appkit.h>
  12. #import <remote/NXProxy.h>    /* setProtocolForProxy */
  13.  
  14. @interface RemoteServer:Object <NXSenderIsInvalid>
  15. {
  16. }
  17.  
  18. /* the three utility methods */
  19. - init;
  20. - doesNotRecognize:(SEL)aSelector;
  21. - senderIsInvalid:sender;
  22.  
  23. /* the remote methods */
  24. - hide:sender;
  25. - newDocument:sender;
  26. - openDocument:(const char *)aPath;
  27.  
  28.  
  29. @end
  30.